home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if "%xxp%"=="" goto Demo
- if "%getkey%"=="C" goto Config
- if "%getkey%"=="D" goto Demo
- goto End
-
- :Demo
- if exist c:\sierra\democd\krondemo\krondor.exe goto KronDHD
-
- :Config
- if exist c:\sierra\democd\krondemo\krondor.exe goto KronCHD
- echo.
- echo.
- echo This demo must be installed on the hard disk for proper operation.
- echo This will require approximately 2.3 mbytes of free space on C:.
- echo.
- echo Do you want to install the demo you your C: drive now?
- getkey YN
- cls
- if "%getkey%"=="N" goto End
-
- Install
- goto Demo
-
- :KronCHD
- C:
- cd \sierra\democd\krondemo
- install
-
- :KronDHD
- c:
- cd \sierra\democd\krondemo
- krondor
- cls
-
- :End
-